home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 015a / tutorii.zip / FOR.DAT < prev    next >
Text File  |  1991-11-29  |  338b  |  14 lines

  1. Explanation of the FOR command. It is a 
  2. BATCH command.
  3.  
  4. This command is used in a BATCH file and 
  5. will run a specified command for each file 
  6. in a set.  
  7.  
  8. Example: 
  9.        To type all .DOC files in drive A you
  10.        would use the following command in 
  11.        your batch file:
  12.        
  13.        for %%f in (*.doc) do type %%f
  14.